ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc.Finance Namespace / Fibonacci<T> Class / High Property






In This Topic
    High Property (Fibonacci<T>)
    In This Topic
    Gets or sets the high value of Fibonacci tool.
    Syntax
    'Declaration
     
    
    Public Property High As System.Nullable(Of Double)
    'Usage
     
    
    Dim instance As Fibonacci(Of T)
    Dim value As System.Nullable(Of Double)
     
    instance.High = value
     
    value = instance.High
    public System.Nullable<double> High {get; set;}
    public read-write property High: System.Nullable; 
    public function get,set High : System.Nullable
    public: __property System.Nullable<double> get_High();
    public: __property void set_High( 
       System.Nullable<double> value
    );
    public:
    property System.Nullable<double> High {
       System.Nullable<double> get();
       void set (    System.Nullable<double> value);
    }
    Remarks
    If not specified, the high value is caclulated based on data values provided by the itemsSource.
    See Also